home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IELinkGetCollection.au3 < prev    next >
Text File  |  2007-09-08  |  492b  |  13 lines

  1. ; *******************************************************
  2. ; Example 1 - Open browser with basic example, get link collection,
  3. ;                loop through items and display the associated link URL references
  4. ; *******************************************************
  5. ;
  6. #include <IE.au3>
  7. $oIE = _IE_Example ("basic")
  8. $oLinks = _IELinkGetCollection ($oIE)
  9. $iNumLinks = @extended
  10. MsgBox(0, "Link Info", $iNumLinks & " links found")
  11. For $oLink In $oLinks
  12.     MsgBox(0, "Link Info", $oLink.href)
  13. Next